home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
archiver
/
gzip06st.zoo
/
Makefile.st
< prev
next >
Wrap
Makefile
|
1993-01-06
|
438b
|
11 lines
# Very simple makefile for GZIP v0.6 Atari.
# If you want to build GZIP for a normal TOS-filesystem then you should
# add "-DNO_SYMLINK -DNO_MULTIPLE_DOTS -DNO_CHOWN" to CFLAGS.
CC = gcc
CFLAGS = -O2 -D__STDC__ -DSTDC_HEADERS -DDIRENT -DHAVE_UNISTD_H -DUTIME -DNEED_MEMORY_H -DHAVE_STRING_H
OBJS = gzip.o zip.o deflate.o trees.o bits.o unzip.o inflate.o util.o crypt.o lzw.o unlzw.o getopt.o alloca.o
gzip: $(OBJS)
$(CC) -o $@ $(OBJS)